home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ WinNT RAS Options 3.xpl < prev    next >
Text File  |  2003-02-13  |  3KB  |  88 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="2"
  3. "COUNT"="3"
  4. "UIPATH"="Network\RAS & DUN"
  5. "NAME"="Server Options"
  6. "VERSION"="1.10"
  7. "OSVERSION"="0101011"
  8. "LANGUAGE"="VBScript"
  9. "TEXT 1"="Auth. Attempts"
  10. "TEXT 2"="Auth. Time(sec)"
  11. "TEXT 3"="Auto HangUp(min)"
  12. "DESCRIPTION 1"="The first option controls how often a user connecting to this server is allowed to try to authenticate before the connection is closed. Valid values are 1 to 10 (Default is 2)."
  13. "DESCRIPTION 2"="The second option controls how long the user is allowed to authenticate before the connection is closed. This value is in seconds; the range is from 20 seconds to 600 seconds (Default is 120)."
  14. "DESCRIPTION 3"="The third options controls after how many minutes inactivity the connection should be automatically closed. The default values is 20 minutes."
  15. "AUTHOR"="Xteq Systems"
  16. "CONTACTURL"="http://www.xteq.com"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  18. "COMMENT 1"="Thanks to Rob Meijer [robmeyer@castel.nl] for the bug notice!"
  19. "COMMENT 2"="Thanks to CptSiskoX for his help!"
  20.  
  21.  
  22. sV1="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteAccess\Parameters\AuthenticateRetries"
  23. sV2="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteAccess\Parameters\AuthenticateTime"
  24. sV3="HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\RemoteAccess\Parameters\AutoDisconnect"
  25.  
  26. Sub Plugin_Initialize 
  27.     i=RegReadValue(sV1)
  28.     SetUIElement 1,i
  29.  
  30.     i=RegReadValue(sV2)
  31.     SetUIElement 2,i
  32.  
  33.     i=RegReadValue(sV3)
  34.     SetUIElement 3,i
  35. End Sub
  36.  
  37. Sub Plugin_CheckData(ElementIndex)
  38. End Sub
  39.  
  40. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  41.  i=GetUIElement(1)
  42.  if IsNumeric(i)=true then
  43.     if i<1 or i>10 then
  44.        Call MsgError("Auth. Attempts: Please enter a value between 1 and 10")
  45.     else
  46.        'Set Value
  47.        Call RegWriteValue(sV1,i,2)
  48.     end if
  49.  else
  50.     if i="" then
  51.        if RegValueExists(sV1) then RegDeleteValue(sV1)
  52.     end if
  53.  end if
  54.  
  55.     
  56.   
  57.  i=GetUIElement(2)
  58.  if IsNumeric(i)=true then
  59.     if i<20 or i>600 then
  60.        Call MsgError("Auth. Time: Please enter a value between 20 and 600")
  61.     else
  62.        'Set Value
  63.        Call RegWriteValue(sV2,i,2)
  64.     end if
  65.  else
  66.     if i="" then
  67.        if RegValueExists(sV2) then RegDeleteValue(sV2)
  68.     end if
  69.  end if
  70.  
  71.  
  72.  
  73.  i=GetUIElement(3)
  74.  if IsNumeric(i)=true then
  75.     'Set Value
  76.     Call RegWriteValue(sV3,i,2)
  77.  else
  78.     if i="" then
  79.        if RegValueExists(sV3) then RegDeleteValue(sV3)
  80.     end if
  81.  end if
  82.  
  83.  Call Restart
  84. End Sub
  85.  
  86. Sub Plugin_Terminate 
  87. End Sub
  88.